home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / csharprrectbridge.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-07-15  |  1.6 KB  |  32 lines

  1. //******************************************************************'
  2. //*                                                                *'
  3. //*                      TurboCAD for Windows                      *'
  4. //*                   Copyright (c) 1993 - 2004                    *'
  5. //*             International Microcomputer Software, Inc.         *'
  6. //*                            (IMSI)                              *'
  7. //*                      All rights reserved.                      *'
  8. //*                                                                *'
  9. //******************************************************************'
  10. // The following ifdef block is the standard way of creating macros which make exporting 
  11. // from a DLL simpler. All files within this DLL are compiled with the CSHARPRRECTBRIDGE_EXPORTS
  12. // symbol defined on the command line. this symbol should not be defined on any project
  13. // that uses this DLL. This way any other project whose source files include this file see 
  14. // CSHARPRRECTBRIDGE_API functions as being imported from a DLL, whereas this DLL sees symbols
  15. // defined with this macro as being exported.
  16. #ifdef CSHARPRRECTBRIDGE_EXPORTS
  17. #define CSHARPRRECTBRIDGE_API __declspec(dllexport)
  18. #else
  19. #define CSHARPRRECTBRIDGE_API __declspec(dllimport)
  20. #endif
  21.  
  22. // This class is exported from the CSharpRRectBridge.dll
  23. class CSHARPRRECTBRIDGE_API CCSharpRRectBridge {
  24. public:
  25.     CCSharpRRectBridge(void);
  26.     // TODO: add your methods here.
  27. };
  28.  
  29. extern CSHARPRRECTBRIDGE_API int nCSharpRRectBridge;
  30.  
  31. CSHARPRRECTBRIDGE_API int fnCSharpRRectBridge(void);
  32.